home *** CD-ROM | disk | FTP | other *** search
/ Champak 45 / Vol 45.iso / games / escape.swf / scripts / DefineSprite_44 / frame_1 / DoAction.as
Encoding:
Text File  |  2005-08-23  |  317 b   |  17 lines

  1. _width = 12;
  2. _height = 12;
  3. this.onEnterFrame = function()
  4. {
  5.    if(_Y < -45)
  6.    {
  7.       this._x = random(600) - 300;
  8.       this._y = 40 + random(20);
  9.       _width = 12;
  10.       _height = 12;
  11.    }
  12.    _Y = _Y - (_Y + 60) / 10;
  13.    _X = _X - _X / 20;
  14.    _width = _width - 0.5;
  15.    _height = _height - 0.5;
  16. };
  17.